home *** CD-ROM | disk | FTP | other *** search
- /* This file is part of the KDE project
- Copyright (C) 2001 Montel Laurent <lmontel@mandrakesoft.com>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
- #ifndef __KoInsertLink__
- #define __KoInsertLink__
-
- #include <kdialogbase.h>
- #include <koffice_export.h>
- class QLineEdit;
- class KURLRequester;
-
- namespace KOfficePrivate {
- /**
- * @internal
- */
- class internetLinkPage : public QWidget
- {
- Q_OBJECT
- public:
- internetLinkPage( QWidget *parent = 0, char *name = 0 );
- QString linkName()const;
- QString hrefName();
- void setLinkName(const QString & _name);
- void setHrefName(const QString &_name);
- private:
- QString createInternetLink();
- QLineEdit* m_linkName, *m_hrefName;
- private slots:
- void textChanged ( const QString & );
- signals:
- void textChanged();
- };
-
- /**
- * @internal
- */
- class bookmarkLinkPage : public QWidget
- {
- Q_OBJECT
- public:
- bookmarkLinkPage( QWidget *parent = 0, char *name = 0 );
- QString linkName()const;
- QString hrefName();
- void setLinkName(const QString & _name);
- void setHrefName(const QString &_name);
- void setBookmarkList(const QStringList &bkmlist);
- private:
- QString createBookmarkLink();
- QLineEdit* m_linkName;
- QComboBox *m_hrefName;
- private slots:
- void textChanged ( const QString & );
- signals:
- void textChanged();
- };
-
- /**
- * @internal
- */
- class mailLinkPage : public QWidget
- {
- Q_OBJECT
- public:
- mailLinkPage( QWidget *parent = 0, char *name = 0 );
- QString linkName()const;
- QString hrefName();
- void setLinkName(const QString & _name);
- void setHrefName(const QString &_name);
-
- private slots:
- void textChanged ( const QString & );
- private:
- QString createMailLink();
- QLineEdit* m_linkName, *m_hrefName;
- signals:
- void textChanged();
- };
-
- /**
- * @internal
- */
- class fileLinkPage : public QWidget
- {
- Q_OBJECT
- public:
- fileLinkPage( QWidget *parent = 0, char *name = 0 );
- QString linkName()const;
- QString hrefName();
- void setLinkName(const QString & _name);
- void setHrefName(const QString &_name);
-
- private slots:
- void textChanged ( const QString & );
- void slotSelectRecentFile( const QString & );
- private:
- QString createFileLink();
- QLineEdit* m_linkName;
- KURLRequester* m_hrefName;
- signals:
- void textChanged();
- };
- }
-
- /**
- * Dialog to insert links to various sources (file, Internet, mail and bookmarks).
- */
- class KOFFICEUI_EXPORT KoInsertLinkDia : public KDialogBase
- {
- Q_OBJECT
- public:
- KoInsertLinkDia( QWidget *parent, const char *name = 0,bool displayBookmarkLink=true );
- static bool createLinkDia(QString & linkName, QString & hrefName, const QStringList& bkmlist, bool displayBookmarkLink = true,
- QWidget* parent = 0, const char* name = 0);
-
- //internal
- QString linkName() const;
- QString hrefName() const;
- void setHrefLinkName(const QString &_href, const QString &_link, const QStringList & bkmlist);
- protected slots:
- virtual void slotOk();
- void slotTextChanged ( );
- void tabChanged(QWidget *);
-
- private:
- KOfficePrivate::fileLinkPage *fileLink;
- KOfficePrivate::mailLinkPage *mailLink;
- KOfficePrivate::internetLinkPage *internetLink;
- KOfficePrivate::bookmarkLinkPage *bookmarkLink;
- QString currentText;
- };
-
- #endif
-